home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / doc / c_quickref.doc < prev    next >
Text File  |  1994-02-13  |  2KB  |  24 lines

  1. dice/operater precedence                                 dice/operater precedence
  2. dice/precedence                                                   dice/precedence
  3. dice/c_quickref                                                   dice/c_quickref
  4.  
  5.         -----------------------------------------------------------------
  6.         ()  {}  ->  .                                       Left-to-right
  7.         !   ~   ++  --  +  -  *  &  (type)  sizeof()        Right-to-Left *
  8.         *   /   %                                           Left-to-right
  9.         +   -                                               Left-to-right
  10.         <<  >>                                              Left-to-right
  11.         <   <=  >   >=                                      Left-to-right
  12.         ==  !=                                              Left-to-right
  13.         &                                                   Left-to-right
  14.         ^                                                   Left-to-right
  15.         |                                                   Left-to-right
  16.         &&                                                  Left-to-right
  17.         ||                                                  Left-to-right
  18.         ?:                                                  Left-to-right
  19.         =   +=  -=  *=  /=  %=  &=  ^=  |=  <<=  >>=        Right-to-left **
  20.         ,                                                   Left-to-right
  21.         -----------------------------------------------------------------
  22.         *  The higher precidence +, - and * are unary operators
  23.         ** Warning: = is a low priority operator; parenthesis often required!
  24.